home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
c
/
jpl_c.zip
/
FABS.C
< prev
next >
Wrap
Text File
|
1986-05-18
|
640b
|
19 lines
/* 1.0 07-06-84 */
/************************************************************************
* Robert C. Tausworthe *
* Jet Propulsion Laboratory *
* Pasadena, CA 91009 1984 *
************************************************************************/
#include "defs.h"
/************************************************************************/
double
fabs(x) /* return double absolute value of double x */
/*----------------------------------------------------------------------*/
double x;
{
return ABS(x);
}